home *** CD-ROM | disk | FTP | other *** search
- HEXFILE
-
- version 1.0
- by
- Joseph Berry
- 73170,1341
-
- This little utility takes as input ANY file and creates an output
- file containing the ASCIIized hexidecimal equivalent of the file
- in a format usable by C compilers. For example, given a file that
- contains the numbers one through five in bytes one through five,
- HEXFILE will create an output equivalent as follows:
- 0x01,0x02,0x03,0x04,0x05.
-
- This output ASCII file can then be edited by any editor and used
- by placing it as a compile definition for some global variable(s)
- in your C source code.
-
- The program was compiled using MicroSoft C version 5.1:
- CL HEXFILE.C
-
- It's a simple program but I desparately needed it and couldn't
- find another program that performed this function. Enjoy!
-
-